home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / kill-the-dragons.swf / scripts / frame_640 / DoAction.as
Encoding:
Text File  |  2011-12-21  |  320 b   |  21 lines

  1. plyThrow.onRollOver = function()
  2. {
  3.    plyWithin = true;
  4. };
  5. plyThrow.onRollOut = function()
  6. {
  7.    plyWithin = false;
  8. };
  9. plyThrow.onDragOut = function()
  10. {
  11.    plyWithin = false;
  12. };
  13. plyThrow.onDragOver = function()
  14. {
  15.    plyWithin = true;
  16. };
  17. plyThrow.releaseOutside = function()
  18. {
  19.    plyWithin = false;
  20. };
  21.